home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / science / cdrift3.zip / CONST.H < prev    next >
C/C++ Source or Header  |  1990-02-22  |  534b  |  20 lines

  1. /* This file contains some defines for maximum array dimensions, as well
  2. as the one structure definition needed and some miscellaneous declarations */
  3.  
  4. #define MAXX 90
  5. #define MAXY 90
  6. #define MAXSPLINTER 10
  7. #define MAXFRAG 100
  8. #define MAXPLATE 40
  9. #define REALSCALE 100
  10. #define DRAWMODE_NONE 0
  11. #define DRAWMODE_GENERIC 1
  12. #define DRAWMODE_TEXT 2
  13. #define DRAWMODE_GRAY 3
  14.  
  15. #define ABS(xx) ((xx < 0) ? -xx: xx)
  16.  
  17. extern double cos(), sin(), sqrt();
  18.  
  19. struct plate { short dx, dy, odx, ody, rx, ry, age, area, id, next; };
  20.